home comics writing pictures archive about

DataViewViewModel.cs

Language: C#
Last Modified: 2020-06-27 1:58:36 PM UTC
File Size: 11222 bytes
http://www.penguinstew.ca/example/dataviewer/ViewModel/DataViewViewModel.cs
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.SqlClient;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Budgeter.Model;
using System.Windows.Data;
using System.Data.Linq;
using System.Data.Linq.Mapping;
using Penguin.MVVMBase.ViewModelBase;
using Penguin.MVVMBase.Util;
using Budgeter.Model.Connection;
namespace DataViewer.ViewModel
{
class DataViewViewModel : WindowViewModelBase
{
#region Constants
private const int DEFAULT_WIDTH = 150;
#endregion
#region Variables
/// <summary>
/// DataContext reference
/// </summary>
private BudgeterDataContext m_connection;
#endregion
#region Properties
private ObservableCollection<string> m_tableList;
/// <summary>
/// List of tables to view
/// </summary>
public ObservableCollection<string> TableList
{
get
{
return m_tableList;
}
set
{
SetProperty(ref m_tableList, value, "TableList");
}
}
private string m_selectedTable;
/// <summary>
/// The name of the currently selected table
/// </summary>
public string SelectedTable
{
get
{
return m_selectedTable;
}
set
{
if (SetProperty(ref m_selectedTable, value, "SelectedTable"))
{
UpdateList();
}
}
}
private IList m_dataList;
/// <summary>
/// List of items in the selected table
/// </summary>
public IList DataList
{
get
{
return m_dataList;
}
set
{
SetProperty(ref m_dataList, value, "DataList");
}
}
private GridView m_dataGridView;
/// <summary>
/// The view to use with the currently selected table
/// </summary>
public GridView DataGridView
{
get
{
return m_dataGridView;
}
set
{
SetProperty(ref m_dataGridView, value, "DataGridView");
}
}
private RelayCommand m_openCommand;
/// <summary>
/// Command for the open selector button
/// </summary>
public ICommand OpenCommand
{
get
{
return m_openCommand;
}
}
#endregion
#region Constructor
/// <summary>
/// Default constructor
/// </summary>
public DataViewViewModel()
{
//Setup command
m_openCommand = new RelayCommand(
_ =>
{
OpenServerSelector();
});
//Setup table
TableList = new ObservableCollection<string>();
Type dataContextType = typeof(BudgeterDataContext);
foreach (var field in dataContextType.GetFields())
{
TableList.Add(field.Name);
}
if (TableList.Count == 0)
{
throw new InvalidOperationException("There are no tables defined");
}
m_selectedTable = TableList.First();
}
#endregion
#region private methods
/// <summary>
/// Updates the list view based on the currently selected table
/// </summary>
private void UpdateList()
{
if (m_connection == null)
{
RequestMsgBox("Error: No database connection", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
IList list = new List<Object>();
GridView view = new GridView();
Type dataContextType = typeof(BudgeterDataContext);
var field = dataContextType.GetField(SelectedTable);
Type fieldType = field.FieldType;
if (field == null || !fieldType.IsGenericType)
{
return;
}
Type[] fieldArguments = fieldType.GetGenericArguments();
Type type = fieldArguments.FirstOrDefault();
if (type == null)
{
return;
}
foreach (var property in type.GetProperties())
{
if (property.Name.Contains("Colour"))
{
var textBlockFactory = new FrameworkElementFactory(typeof(TextBlock));
textBlockFactory.SetValue(TextBlock.TextProperty, new Binding(property.Name));
textBlockFactory.SetValue(TextBlock.ForegroundProperty, new Binding(property.Name));
DataTemplate cellTemplate = new DataTemplate()
{
VisualTree = textBlockFactory,
};
view.Columns.Add(new GridViewColumn()
{
Header = property.Name,
CellTemplate = cellTemplate
});
}
else if (property.PropertyType == typeof(Decimal))
{
view.Columns.Add(new GridViewColumn()
{
Header = property.Name,
DisplayMemberBinding = new Binding(property.Name)
{
StringFormat = "C"
},
});
}
else if (property.PropertyType.GetInterface(typeof(ICollection).FullName) != null)
{
view.Columns.Add(new GridViewColumn()
{
Header = property.Name,
DisplayMemberBinding = new Binding(property.Name + ".Count"),
});
}
else
{
view.Columns.Add(new GridViewColumn()
{
Header = property.Name,
DisplayMemberBinding = new Binding(property.Name),
});
}
}
ITable table = field.GetValue(m_connection) as ITable;
foreach (var item in table)
{
list.Add(item);
}
DataList = list;
DataGridView = view;
}
/// <summary>
/// Makes a view request to display the server selector
/// </summary>
private void OpenServerSelector()
{
RequestView(new ServerSelectorViewModel());
}
/// <summary>
/// Update the server connection and config settings
/// </summary>
/// <param name="selectorViewModel">The view model of the server selector</param>
/// <param name="result">The result from the view closing</param>
private void ServerSelectorClosed(ServerSelectorViewModel selectorViewModel, bool result)
{
if (!result)
{
return;
}
//Get the data from the view model
string serverName = selectorViewModel.SelectedServer;
string databaseName = "";
if (selectorViewModel.IsNewDatabase)
{
databaseName = selectorViewModel.NewDatabaseName;
}
else
{
databaseName = selectorViewModel.SelectedDatabase;
}
//Update connection
ConnectionStringManager manager = new ConnectionStringManager(serverName, databaseName);
BudgeterDataContext.Reinitialize(manager);
m_connection = BudgeterDataContext.Instance;
TestServer();
manager.SaveSettings();
UpdateList();
}
/// <summary>
/// Calls the server test message and displays a message box if there's a problem
/// </summary>
private void TestServer()
{
try
{
m_connection.TestServer();
}
catch (Exception ex)
{
if(!(ex is SqlException) && !(ex is InvalidCastException))
{
throw;
}
RequestMsgBox("Failed to retrieve data, this likely means the database schema is wrong. \n Do you want to recreate the database?",
"Failed schema test", MessageBoxButton.YesNo, MessageBoxImage.Error,
result => {
if (result == MessageBoxResult.Yes)
{
m_connection.ReCreateDatabase();
}
else
{
OpenServerSelector();
}
});
}
}
#endregion
#region Overrides
/// <summary>
/// Initialize database settings
/// </summary>
public override void ViewLoaded(object sender, RoutedEventArgs e)
{
ConnectionStringManager manager = new ConnectionStringManager();
//If config settings are blank then prompt to select server
if (!manager.IsInitalized())
{
OpenServerSelector();
}
else //Else load server settings from config
{
m_connection = BudgeterDataContext.Instance;
try
{
m_connection.TestServer();
}
catch (SqlException)
{
RequestMsgBox("There was a problem connecting to the database\n press OK to select a database.",
"Failed database connection", MessageBoxButton.OK, MessageBoxImage.Error,
result =>
{
OpenServerSelector();
});
}
}
}
/// <summary>
/// Call method containing logic for server selector closed
/// </summary>
public override void RequestedViewClosed(IWindowViewModel viewModel, bool result)
{
if (viewModel is ServerSelectorViewModel)
{
ServerSelectorClosed((ServerSelectorViewModel)viewModel, result);
}
}
#endregion
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370